Skip to content

blog: add video embed to Dakota Alpha 1 post#765

Closed
castrojo wants to merge 3 commits intoprojectbluefin:mainfrom
castrojo:add-dakota-alpha1-video
Closed

blog: add video embed to Dakota Alpha 1 post#765
castrojo wants to merge 3 commits intoprojectbluefin:mainfrom
castrojo:add-dakota-alpha1-video

Conversation

@castrojo
Copy link
Copy Markdown
Contributor

Adds the YouTube video embed to the top of the Dakota Alpha 1 blog post. Feel free to move it to a better spot.

castrojo and others added 3 commits April 5, 2026 13:57
…udit questions

- One branch per logical fix (never bundle unrelated changes)
- Load github-actions-expert before touching any .github/workflows/ file
- Call ask_user before planning on any audit task
- Create .github/copilot-instructions.md pointer to AGENTS.md

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@castrojo
Copy link
Copy Markdown
Contributor Author

Closing — opened incorrectly via gh pr create. Will resubmit via compare URL per proper procedure.

@castrojo castrojo closed this Apr 19, 2026
Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces Copilot instructions, updates the AGENTS.md file with new git workflow and skill requirements, and adds a YouTube video to a blog post. The review feedback correctly identifies that the PR violates the newly introduced "one branch per logical fix" rule by bundling unrelated changes. Furthermore, the YouTube iframe requires adjustments to its attributes to ensure compatibility with JSX/Docusaurus and to improve performance.

Comment thread AGENTS.md
**Never push directly to main.** Always work on a topic branch:
**Never push directly to main.** Always work on a topic branch.

**One branch per logical fix.** Never bundle unrelated changes onto the same branch, even if the second change is small. Each fix gets its own branch and PR — create a separate branch, cherry-pick if needed.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This pull request violates the "One branch per logical fix" rule being introduced in this very change. It bundles unrelated documentation updates (Copilot instructions and agent workflow rules) with a blog post update. To adhere to the repository's workflow and maintain a clean git history, these changes should be split into separate pull requests.

tags: [announcements]
---

<iframe width="560" height="315" src="https://www.youtube.com/embed/UzhMA2Mw3Bc?si=a6PtI-QUnFFyhvIB" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The <iframe> uses HTML attributes that are incompatible with JSX, which Docusaurus uses for rendering Markdown. Attributes like frameborder, referrerpolicy, and allowfullscreen must be camelCased as frameBorder, referrerPolicy, and allowFullScreen to avoid React warnings and potential build failures in a strict CI environment. Additionally, it is recommended to remove the si tracking parameter from the YouTube URL and add loading="lazy" for better performance.

Suggested change
<iframe width="560" height="315" src="https://www.youtube.com/embed/UzhMA2Mw3Bc?si=a6PtI-QUnFFyhvIB" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/UzhMA2Mw3Bc" title="YouTube video player" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerPolicy="strict-origin-when-cross-origin" allowFullScreen loading="lazy"></iframe>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant